home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / 2dapnt14.arc / 2DAPOINT.CTL next >
Text File  |  1991-10-06  |  10KB  |  230 lines

  1. ; 2DAPoint v1.40 (10/91)       By Ron Pritchett of FidoNet Node 376/74
  2. ;
  3. ; Copyright (c) 1991, Distribute Freely, No Modifications to Software
  4.  
  5. ; FidoNet Address
  6. ; Address Zone:Net/Node.Point
  7. Address 1:376/74.0
  8.  
  9. ; Inbound Mail Path
  10. InBound C:\Binkley\NetFile
  11.  
  12. ; Outbound Mail Path
  13. ;  - "Outbound C:\binkley\Outbound.001" is perfectly legal. Any mail for YOUR
  14. ;     zone will put there. Any mail for Zone 2 would go into Outbound.002.
  15. ;  - The Eggnet (Zone 100) outbound dir be Outbound.064 because 064 is hex
  16. ;    for 100. If C:\Binkley\Outbound.064 didn't exist, and was needed,
  17. ;    it'd be created.
  18. ;
  19. OutBound C:\Binkley\OutBound
  20.  
  21. ; Matrix/NetMail Path
  22. Mail C:\Mail\Matrix
  23.  
  24. ; Point ReDirection Mode
  25. ; Mode Net
  26. ; Mode Node (Default)
  27. ;
  28. ; Net Mode -  Any mail outbound to a point in your network will be saved to
  29. ;             it's full 4D address & placed into the appropriate .PNT dir.
  30. ;             For example Mail to 1:376/16.1 would be placed into
  31. ;             C:\Binkley\Outbound\01780010.PNT as 00000001.?UT.
  32. ;                                 \--/\--/        \--/
  33. ;                                 376   16        Always 4 0's
  34. ; Node Mode - Any mail outbound to a point for your node ONLY will be saved
  35. ;             in the corresponding .PNT directory. Otherwise, the 4D address
  36. ;             would be embedded into the message but the message would be
  37. ;             sent to the point's host system.
  38. ;             In the above example, the msg would be placed into
  39. ;             C:\Binkley\Outbound as 01780010.?ut
  40. Mode Node
  41.  
  42. ; Save forwarded messages or not
  43. ; Forward Save (Default)
  44. ; Forward Kill
  45. Forward Save
  46.  
  47. ; Save passthru file attaches or not
  48. ; (this refers to the files themselves, not the message they're attached to)
  49. ; FileFwd Save
  50. ; FileFwd Kill (Default)
  51. FileFwd Kill
  52.  
  53. ;
  54. ; Message attributes - 2 bytes
  55. ;
  56. ;
  57. ;                              Hold─┐     ┌─Orphan (Unknown Destination Node)
  58. ;                  File Request─┐   │     │   ┌─File Attach
  59. ;         Is Return Receipt─┐   │   │     │   │   ┌─Read
  60. ;        Update Request─┐   │   │   │     │   │   │   ┌─Private
  61. ;                     ╔═════════════════════════════════╗
  62. ;                     ║ F E D C B A 9 8 7 6 5 4 3 2 1 0 ║
  63. ;                     ╚═════════════════════════════════╝
  64. ;     Audit Trail Request─┘   │   │   │ │   │   │   └─Crash
  65. ;           Receipt Requested─┘   │   │ │   │   └─Sent
  66. ;                        Reserved─┘   │ │   └─Forward
  67. ;                 Local (vs. FidoNet)─┘ └─KillSent (Kill after Sent)
  68. ;
  69. ; Or for the programmers out there:
  70. ;
  71. ; Value     Description                     Bit Mask
  72. ; -----     ---------------------- -- -------------------
  73. ; $0001     private message         * 0000 0000 0000 0001
  74. ; $0002     crash mail              * 0000 0000 0000 0010
  75. ; $0004     read by addressee       * 0000 0000 0000 0100
  76. ; $0008     sent                      0000 0000 0000 1000
  77. ; $0010     file attached to msg    * 0000 0000 0001 0000
  78. ; $0020     forward                   0000 0000 0010 0000
  79. ; $0040     unknown dest node         0000 0000 0100 0000
  80. ; $0080     kill after sent         * 0000 0000 1000 0000
  81. ; $0100     FidoNet vs. local         0000 0001 0000 0000
  82. ; $0200     Hold, don't send        * 0000 0010 0000 0000
  83. ; $0400     <reserved>             X? 0000 0100 0000 0000
  84. ; $0800     file request            * 0000 1000 0000 0000
  85. ; $1000     receipt requested      X* 0001 0000 0000 0000
  86. ; $2000     is a return receipt    X* 0010 0000 0000 0000
  87. ; $4000     audit trail requested  X* 0100 0000 0000 0000
  88. ; $8000     update request         X* 1000 0000 0000 0000
  89. ;
  90. ;                                   * = preserved by the network
  91. ;                                   ? = stripped by the (FTSC spec) but
  92. ;                                       preserved by seadog<tm>
  93. ;                                   X = not used by Opus
  94. ;
  95. ; Reminder: Once it's been determined that a message needs sent, then
  96. ;           the "SetBit" & "StripBit" bitmasks will be applied.
  97. ;
  98. ; Flexibility: The bitmask is highly flexible. It could be entered in
  99. ;              1 to 16 "words". Leading zeros will be assumed.
  100. ;
  101. ; StripBit 0 0 0 0 1
  102. ; StripBit 1               All 3 of these are equal!
  103. ; StripBit 000 1
  104. ;
  105. ; WARNING!!! DANGER, Will Robinson, DANGER!!!!
  106. ; It's recommended that you do NOT mess with any bits other than Private,
  107. ; Crash and/or Hold. You are completely on your own and you're playing
  108. ; with FIRE!
  109. ;
  110. ; Examples:
  111. ; SetBit   0000 0010 0000 0001        <- Make all mail private & hold
  112. ; StripBit 0000 0000 0000 0010        <- Strip all Crash bits
  113. SetBit   0000 0000 0000 0000     ; Nothing Set
  114. StripBit 0000 0000 0000 0000     ; Nothing Stripped
  115.  
  116. ; Name Service! New for Version 1.10. A Message will be directed to address
  117. ; listed. NOTE: Name recognition takes precedent over whatever the destination
  118. ; address is, so have your control file setup correctly. the way it works is
  119. ; if a message is addressed to your Zone:Net then the address in the control
  120. ; file is used.
  121. ;
  122. ; A destination address may be of the following forms
  123. ;
  124. ;      Possible Formats                 Assumptions
  125. ;   ---------------------         --------------------------------------------
  126. ;   <Zone:Net/Node.Point>         - full address, no mistakes here!
  127. ;   <Zone:Net/Node>               - Point = 0
  128. ;        <Net/Node>               - Zone = Yours, Point = 0
  129. ;        <Net/Node.Point>         - Zone = Yours,
  130. ;            <Node.Point>         - Zone & Net = Yours
  131. ;            <Node>               - Zone & Net = Yours, Point = 0
  132. ;                 .<Point>        - Zone, Net & Node = Yours
  133.  
  134. Names
  135.   Robert Wilhite                           8
  136.   Shay Walters                             12
  137.   Travis Watford                           14.21
  138.   John Brown        ^ John G. Brown Jr.    14.23
  139.   David Wilhite                            14.98
  140.   Ray Radlein                              16.3
  141.   Arnie Elkins                             16.4
  142.   Kevin Parris                             16.5
  143.   David Dorman                             16.39
  144.   John Mood                                16.110
  145.   Mike Faircloth                           16.155
  146.   Greg Prevost                             16.197
  147.   Forrest Bennett                          16
  148.   Bill Talyor                              24
  149.   William Bertholf                         26
  150.   Bob Main                                 38.14
  151.   Allen Hendrix                            38.107
  152.   Ed Wootin         ^ Edwin Wooten         38.112
  153.   Merlin            ^ Larry Von Wessinger  38
  154.   Face              ^ Paul Beverly         38.251
  155.   Sir Kay           ^ Paul Beverly         38.251
  156.   Dennis Rogers                            40
  157.   Paul Deemer                              42
  158.   Dave Rose                                44
  159.   Steve Kopec       ^ Steven Kopec         46
  160.   Mhoram            ^ Steven Kopec         46
  161.   Jules Edwards     ^ Julius Edwards       50
  162.   David Dean                               56
  163.   Jim Harvey                               60
  164.   Rob Ehlers                               64
  165.   John Nettles                             66
  166.   Gale Wilkinson    ^ Gale D. Wilkinson    70
  167.   Roy Myers                                70.101
  168.   Lee Justice                              70.102
  169.   John Van          ^ John Van Buskirk     72
  170.   JVB               ^ John Van Buskirk     72
  171.  
  172.   Reese             ^ Ben Stuckey          72.115
  173.   ; any message entered to "Reese" or "Ben Stuckey" whose destination
  174.   ; address is 1:376/xx.yy would get sent to "Ben Stuckey" @ 1:376/72.115
  175.  
  176.   Lewis Etheridge                          .1
  177.   Jim McNamee                              .7
  178.   Steve Robertson                          .22
  179.   Andy Hendin       ^ Andrew Hendin        .26
  180.   Warren Kohn                              .31
  181.   Phillip Jones                            .40
  182.   Jim Pine                                 .109
  183.   Kaptian Keller    ^ Bryan Keller         76
  184.   Judge Dredd       ^ Bryan Keller         76
  185.   Doctor Who        ^ Bryan Keller         76
  186.   Ronnue            ^ Ron Pritchett        Hold
  187.   Sysop             ^ Ron Pritchett        Hold
  188.   System Operator   ^ Ron Pritchett        Hold
  189.  
  190.   John Gemmill                             3624/19
  191.   Ben Mann                                 151/2
  192.   Amnon             ^ Amnon Nissan         151/100
  193.   SDS               ^ Bill Weinel          151/121
  194.   JoHo              ^ Joaquim Homrighausen 2:270/17
  195.   ; any message entered to "Joho" or "Joaquim Homrighausen" whose destination
  196.   ; address is 1:376/xx.yy would get sent to "Joaquim Homrighausen" @ 2:270/17.0
  197. End
  198.  
  199. ; Mis-Addressing Notification
  200. ; Notify None   (Default)
  201. ; Notify OurNet
  202. ; Notify All
  203. ;
  204. ; If a msg comes in mis-addressed, then a FYI will be sent back to the
  205. ; person telling them where they can contact the addressee in the future.
  206. ; This feature is dependent on the name servicing.
  207. ;
  208. ; Notify None   - no FYI messages are sent
  209. ;
  210. ; Notify OurNet - FYI's will be sent within your network
  211. ;
  212. ; Notify All    - FYI's will be sent to ANY system
  213. ;
  214. ; Example:
  215. ;     John Point is 1:376/74.101 & his name is in the name service
  216. ;     lookup table. Joe Nobody @ 1:376/2.0 sends a message to
  217. ;     "Joe Nobody @ 1:376/74.125" Once the message arrives, the
  218. ;     proper address of 1:376/74.101 would be substituted & John
  219. ;     Point would get his mail. Also Joe Nobody @ 1:376/2.0 would get
  220. ;     the following message:
  221. ;
  222. ;  Dear Joe Nobody,
  223. ;
  224. ;       In a Netmail message to John Point on Date/Time,
  225. ;       you improperly addressed your message to 1:376/74.125.
  226. ;       John Point can be reached at 1:376/74.101.
  227. ;       Please make a note of this for future reference.
  228. ;
  229. Notify OurNet
  230.